home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu183.dms / pu183.adf / printers.bas < prev    next >
BASIC Source File  |  1990-12-04  |  2KB  |  32 lines

  1. ' Ported to the Amiga in March 1988 by Nathan Barber
  2. ' Adaptions for Amiga graphics (c) 1988 by Nathan Barber
  3.  
  4. 100 LPRINT TAB(10);"Changes to Documentation Programs to support Other Printers."
  5. 110 LPRINT
  6. 120 LPRINT TAB(10);"Each of the documentation programs contains its own text"
  7. 130 LPRINT TAB(10);"processor.  There is a determination of whether each line"
  8. 140 LPRINT TAB(10);"is a command (begun with a period) or is normal text."
  9. 150 LPRINT TAB(10);"If it is a command, then additional processing is done,"
  10. 160 LPRINT TAB(10);"including the use of some of the characterists of the"
  11. 170 LPRINT TAB(10);"printer."
  12. 180 LPRINT
  13. 190 LPRINT TAB(10);"The definitions for the characters which control the"
  14. 200 LPRINT TAB(10);"printer are found in lines 180 to 220 in each of the"
  15. 210 LPRINT TAB(10);"documentation programs.  They are:"
  16. 220 LPRINT
  17. 230 LPRINT TAB(10);"Variable Name    Purpose"
  18. 240 LPRINT TAB(10);"--------------   -------------------------------"
  19. 250 LPRINT TAB(10);"FORM.FEED$       Moves Paper to Top of Next Page"
  20. 260 LPRINT TAB(10);"COMPR.ON$        Sets Compressed Printing On"
  21. 270 LPRINT TAB(10);"COMPR.OFF$       Sets Compressed Printing Off"
  22. 280 LPRINT TAB(10);"BOLD.ON$         Sets Emphasized Printing On"
  23. 290 LPRINT TAB(10);"BOLD.OFF$        Sets Emphasized Printing Off"
  24. 300 LPRINT TAB(10);"EXPAND.ON$       Sets Expanded Printing On"
  25. 310 LPRINT TAB(10);"EXPAND.OFF$      Sets Expanded Printing Off"
  26. 320 LPRINT
  27. 330 LPRINT TAB(10);"The definitions in the lines of the programs should be"
  28. 340 LPRINT TAB(10);"changed to the definitions for the printer which you"
  29. 350 LPRINT TAB(10);"will be using."
  30. 360 FOR I = 1 TO 40 : LPRINT : NEXT I
  31. 370 END
  32.